* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

/* nav */
nav{
  position:fixed;
  top: 0%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-content: center;
  display: flex;
  flex-direction: row;
  background: rgb(0,212,255);
  background: linear-gradient(0deg, rgba(0,212,255,0.022934173669467817) 0%, rgba(0,0,0,1) 100%);
  padding-right: 30px;
}
.header img{
  width: 100%;
}



ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-top: 2%;
  overflow: hidden;
  background:transparent;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.active {
  background-color: transparent;
  color: white;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
}

.active2 {
  background-color:crimson;
}




.menu {
  margin: -10px;
    
    
}


.menu ul li {
    display: inline
}

.menu ul li a {
    color: aliceblue;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    /* padding: 20px; */
}

.menu ul li a:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 20px;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column; /* Ensure a column layout */
  min-height: 100vh; /* Take at least the full height of the viewport */
  background-color: #f1f1f1;
}

.gift-container {
  margin-top: 5%;
  flex: 1;
    text-align: center;
}

.coupon-images {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.coupon-images img {
    width: 800px;
    height: 190px;
    margin: 0 10px;
    border: 2px solid #ff0000; /* Red border */
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.plan-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.plan {
    flex: 1;
    max-width: 400px;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
}

.plan.two-years {
    background-color: #ff0000; 
    color: #ffffff;
}

.plan.three-years {
    background-color: black;
    color: white
}


.plan.three-years h2{
    text-decoration: line-through;
}
.plan.three-years p{
    font-size: 30px;
}

.plan.two-years h2{
    text-decoration: line-through;
}
.plan.two-years p{
    font-size: 30px;
}

.continue-btn {
    background: linear-gradient(to right, crimson,white); 
    color: #fff; /* White font color */
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition:  0.3s ease-in-out;
    margin-top: 5%;
}

.continue-btn:hover {
    background: transparent; 
}


/* footer */

  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    margin-top: auto;
    margin-top: 5%;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 80px; 
    padding-right: 2px;
  }
  
  .footer-section {
    flex: 1;
    margin: 0 10px;
  }
  
  .footer-section h3 {
    margin: 0;
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-left: 2%;
    margin-right: 2%;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -7px;
  }
  
  .footer-section li {
    margin-bottom: 5px;
    font-size: 16px;
    
  }
  
  
  .footer-section a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-logo img {
    width: 150px;
  }
  
  